Add a test for overlapping buffers (WAS: Don't unroll outer loop for speed™)#29
Merged
debris merged 4 commits intodebris:masterfrom May 19, 2018
Merged
Conversation
Not unrolling the outer loop seems to speed up hashing quite significally: Original (unrolled): ``` running 3 tests test bench_keccak_256_with_empty_input ... bench: 557 ns/iter (+/- 46) test bench_keccak_256_with_large_input ... bench: 17,288 ns/iter (+/- 1,871) = 236 MB/s test bench_keccak_256_with_typical_input ... bench: 577 ns/iter (+/- 28) = 88 MB/s ``` This branch (not unrolled): ``` running 3 tests test bench_keccak_256_with_empty_input ... bench: 487 ns/iter (+/- 25) test bench_keccak_256_with_large_input ... bench: 14,645 ns/iter (+/- 675) = 279 MB/s test bench_keccak_256_with_typical_input ... bench: 495 ns/iter (+/- 32) = 103 MB/s ``` "Inspired" by https://github.com/RustCrypto/sponges/blob/master/keccak/src/lib.rs#L138 Running benchmarks from the `keccak-hash` crate so we can compare to the numbers [here](paritytech/keccak-hash#1).
…ont-unroll-outer-loop * 'master' of https://github.com/debris/tiny-keccak: Add test for keccak 256 with some actual content
Contributor
Author
|
@debris ptal |
Owner
|
already merged #30 . Please rebase if still relevant :) |
* origin: Remove hack no longer needed are rerolling loop Reroll outer loop
Contributor
Author
|
Now it's down to adding a test for overlapping buffers. Merge? :) |
debris
approved these changes
May 19, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Not unrolling the outer loop seems to speed up hashing quite significally:
Original (unrolled):
This branch (not unrolled):
"Inspired" by https://github.com/RustCrypto/sponges/blob/master/keccak/src/lib.rs#L138
Running benchmarks from the
keccak-hashcrate so we can compare to the numbers here.